home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Windows Expert
/
Windows Expert.iso
/
desktop
/
bdesk234.zip
/
RESTART.ZIP
/
RESTART.PAS
< prev
Wrap
Pascal/Delphi Source File
|
1991-09-05
|
346b
|
13 lines
program Restart;
{Courtesy of SP Services, publishers of BackDesk - not at all copyright}
{SP Services, +44 703 550037, or sphipps@cix.compulink.co.uk}
uses WinProcs, WinTypes;
var
junk2 : integer;
begin
IF ExitWindows($42,$42) = FALSE
THEN junk2 := MessageBox(0, 'An Application Did Not Terminate','Restart Failed', mb_OK)
end.